/* Reset بعض التنسيقات الافتراضية */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #d7dcee;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    transition: direction 0.3s, text-align 0.3s;
}

header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.logo{
    width: 100px;
    height: 100px;
    border: #000 solid 3px;
    border-radius: 50px;
}
header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* زر تبديل اللغة */
.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-toggle button {
    background-color: #2980b9;
    color: #fff;
    border: none;
    padding: 8px 12px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1em;
}

.language-toggle button.active {
    background-color: #1abc9c;
}
.home-btn{
    padding: 8px 12px;
    background-color: #2980b9;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    border: solid 3px #000;
    border-radius: 10px;
    margin-left: 5px;
    margin-right: 5px;
    transition: 0.9s;   
    margin-top: 10px;
    box-shadow: 0 2px 5px #fff; /* الظل الافتراضي */
    transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.4s ease;; /* تأثير الحركة */
}
.home-btn:hover{
    background-color: #005081;
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0); /* ظل أعمق */
    transform: translateY(-5px); /* رفع العنصر قليلاً */
}
#home-en, #home-ar {
    display: none; /* إخفاء الأزرار بشكل افتراضي */
}

.container {
    max-width: 1200px;
    margin: auto;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 5px solid #2c3e50;
    display: inline-block;
    padding-bottom: 5px;
}

.feature {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border:rgb(131, 155, 218) solid 10px;
}

.feature h3 {
    font-size: 1.5em;
    color: #2980b9;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
    color: #555;
}

footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: relative;
    margin-top: 40px;
}

/* استجابة للتصميم على الشاشات الصغيرة */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    section h2 {
        font-size: 1.5em;
    }

    .feature h3 {
        font-size: 1.2em;
    }

    .language-toggle {
        position: static;
        margin-top: 10px;
    }
}

/* التنسيقات الخاصة باللغة الإنجليزية */
.lang-en {
    display: none;
    direction: ltr;
    text-align: left;
}

.active-lang {
    display: block;
}